home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / zzedit.zip / ZZ.DOC < prev   
Text File  |  1992-07-25  |  2KB  |  39 lines

  1.  
  2. ZZ is a small, simple editor for editing ASCII text files.  There are almost
  3. NO extra, fancy features!  I wrote this to be small for use on a floppy based
  4. laptop.  Word wrap is the only extra feature I couldn't do without.  Great for
  5. editing batch files, memos, notes, etc.  Give it a try.  This is freeware!
  6. Written by Scott McPherson.
  7.  
  8.  
  9. Use:
  10.  
  11.    ZZ [10-78] filename
  12.  
  13.    10-78 is the optional wrap point.  The default word wrap point is set to
  14.    64.  If an optional word wrap point is set, word wrap is on when the
  15.    program is started.  If the wrap point is not specified on the command
  16.    line, the wrap point is left at the default of 64 and word wrap is off.
  17.    Word wrap can be set on or off by pressing Ctrl W.
  18.  
  19. Cursor movement:
  20.  
  21.    The arrow keys move the cursor.
  22.    Home and End move to the beginning or end of the line.
  23.    Page Up and Page Down move up or down one screen at a time.
  24.  
  25. Other keys:
  26.  
  27.    Escape - exits and prompts "Save changes? (y/n)" if the file was changed.
  28.    Ctrl B - toggles the bell (beeps when lines are full).
  29.    Ctrl V - Displays the version date.
  30.    Ctrl W - toggles work wrap.
  31.    Ctrl Y - Yanks the current line (puts it in the yank buffer).
  32.    Ctrl P - Puts the contents of the yank buffer after the current line.
  33.   Ctrl BS - deletes from the cursor to the end of line.
  34.    Delete - deletes the character the cursor is on.
  35. Backspace - deletes the character to the left of the cursor, or joins two
  36.             lines if the cursor is in the first column and there is enough
  37.             room in the above line for both lines.
  38.  
  39.